// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; contract MyContract { function helloWorld() public pure returns (string memory) { return "Hello, World!"; } }